home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / linuxcon.000 / linuxcon / linuxconf-1.6 / translate / vfopen.c < prev   
C/C++ Source or Header  |  1996-03-01  |  126b  |  9 lines

  1. #include <stdio.h>
  2. #include "internal.h"
  3.  
  4. FILE *vfopen (const char *fname, const char *mode)
  5. {
  6.     return fopen (fname,mode);
  7. }
  8.  
  9.